c9b9c2457eca988a43c763643e3d1c622787aaaa,portal-impl/src/com/liferay/portlet/journal/lar/JournalPortletDataHandlerImpl.java,JournalPortletDataHandlerImpl,getSmallImagePath,#PortletDataContext#JournalTemplate#,950
Before Change
PortletDataContext context, JournalTemplate template)
throws PortalException, SystemException {
return context.getPortletPath(PortletKeys.JOURNAL) +
_TEMPLATE_FOLDER + "thumbnail" + CharPool.PERIOD +
template.getSmallImageType();
}
protected static String getStructurePath(
After Change
sm.append(context.getPortletPath(PortletKeys.JOURNAL));
sm.append("/templates/thumbnail.");
sm.append(template.getSmallImageType());
return sm.toString();
}